home *** CD-ROM | disk | FTP | other *** search
- ; =======================================
- ; CSHOW.AM
- ;
- ; AutoMate v2.0 Demonstration Script File
- ; =======================================
-
- ; -------------------------
- ; Launch the CSHOW program.
- ; -------------------------
-
- launch "c:\borlandc\cshow\cshow.exe"
-
- ; ---------------------
- ; Initialize variables.
- ; ---------------------
-
- set row = 3
- set col = 0
-
- ; -------------
- ; Begin search.
- ; -------------
-
- loop key "{DOWN}"
- goif scrcmp (row, col, "COWBOY") found
- incr row
- goif not row > 20 loop
-
- set row = 3
- incr col,20
- goif not col > 60 loop
-
- key "{ESC}"
- key "{ESC}"
- abort
-
- found key "{ENTER}"
- delay 1
- key " "
- abort
-